home *** CD-ROM | disk | FTP | other *** search
/ PCMania 39 / PCMania CD39_3.iso / multi / artgall / artg.dxr / 00078_Script_78 < prev    next >
Text File  |  1995-10-05  |  410b  |  20 lines

  1. on waitfor seconds
  2.   set time = the timer
  3.   repeat while the timer < time + (seconds * 60)
  4.     if the mousedown then exit
  5.   end repeat
  6. end waitfor
  7.  
  8. on waitsound channel
  9.   repeat while soundbusy(1)
  10.     updatestage
  11.     if the mousedown then exit
  12.   end repeat
  13. end waitsound
  14.  
  15. on waitfordep seconds
  16.   set time = the timer
  17.   repeat while the timer < time + (seconds * 60)
  18.   end repeat
  19. end waitfor
  20.